Copying JavaScript into an HTML file

When Fireworks exports HTML with JavaScript behaviors, the exported HTML includes JavaScript code for executing behaviors, as well as all other necessary HTML. When pasting JavaScript into other HTML files, be sure to do the following:

Paste the entire <SCRIPT> section between the <HEAD> and </HEAD> tags. Be sure that the script section begins with <SCRIPT> and ends with </SCRIPT>. If a script section is present in the destination HTML file, do not copy the <SCRIPT> tags; copy the code from the source script and paste it at the end of the destination <SCRIPT> section, before the </SCRIPT> tag.
Paste the image's tag in the <BODY> section where you want the image to appear on the page.